home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 August: Technology Seed / ADC Seed CD - August 1999.toast / Carbon SDK 1.0d10c3 / Sample Code / SimpleText / MovieFile.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-04  |  1.5 KB  |  72 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        MovieFile.h
  3.  
  4.     Contains:    Movie file support for simple text application
  5.  
  6.     Version:    GX 1.2 or later
  7.  
  8.     Written by:    Tom Dowdy
  9.  
  10.     Copyright:    © 1993, 1995-1997 by Apple Computer, Inc., all rights reserved.
  11.  
  12.     File Ownership:
  13.  
  14.         DRI:                Tom Dowdy
  15.  
  16.         Other Contact:        Jim Negrette
  17.  
  18.         Technology:            Macintosh Graphics Group
  19.  
  20.     Writers:
  21.  
  22.         (dmp)    Dave Polaschek
  23.         (ted)    Tom Dowdy
  24.  
  25.     Change History (most recent first):
  26.  
  27.     $Log: MovieFile.h,v $
  28.     Revision 1.2  1998/11/11 22:28:54  wilkes
  29.     Fixed various problems caused by the interface changes made by Nitin earlier,
  30.     mostly involving static RoutineDescriptors...
  31.  
  32.     Revision 1.1.1.1  1998/03/18 22:56:10  ivory
  33.     Initial checkin of SimpleText.
  34.  
  35.         
  36.         3     8/22/97 9:52 AM Sam Bushell
  37.         Moved non-rez #includes into the non-rez zone.
  38.         
  39.         2     8/15/97 11:07 AM Tom Dowdy
  40.         Now builds both inside and outside of QT
  41.         
  42.         1     7/28/97 11:19 AM Duane Byram
  43.         first added to Source Safe project
  44.  
  45.          <3>      9/9/96    dmp        staticfy local functions to eliminate warnings in MWC.
  46.          <2>     8/28/96    ted        fixing errors on printing with abort
  47.          <1>     8/21/95    TD        First checked in.
  48.  
  49. */
  50.  
  51. #include "SimpleText.h"
  52.  
  53. #ifndef REZ
  54.     // if building from the private interfaces, we need to include more header files
  55. //    #ifndef NewMCActionFilterProc
  56. //        #include "MovieController.h"
  57. //        #include "TextMedia.h"
  58. //    #endif
  59.     
  60.     struct MovieDataRecord
  61.         {
  62.         WindowDataRecord        w;
  63.         
  64.         Movie                    theMovie;
  65.         MovieController            thePlayer;
  66.         long                    searchOffset;
  67.         };
  68.     typedef struct MovieDataRecord MovieDataRecord, *MovieDataPtr;    
  69. #endif
  70.  
  71. #define kMovieWindowID    kMovieBaseID
  72.